home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Application
/
BackgroundApplication.cp
< prev
next >
Wrap
Text File
|
2000-06-23
|
586b
|
30 lines
// BackgroundApplication.cp
#ifndef BackgroundApplication_h
#include "BackgroundApplication.h"
#endif
#ifndef FontManagerUser_h
#include "FontManagerUser.h"
#endif
#ifndef ProcessInfo_h
#include "ProcessInfo.h"
#endif
BackgroundApplication::BackgroundApplication( uint32 masterPointers,
uint32 extraStackSpace )
: ApplicationBase( masterPointers, extraStackSpace )
{
Assert( ProcessInfo::Application().OnlyBackground() );
FontManagerUser();
}
bool BackgroundApplication::CanCreate() const
{
return true;
}
void BackgroundApplication::Create()
{
}